home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware Grab Bag
/
Shareware Grab Bag.iso
/
011
/
arc43.lbr
/
ARCRUN.MQC
/
arcrun.mac
Wrap
Text File
|
1985-10-30
|
4KB
|
107 lines
/* ARC - Archive utility - ARCRUN
$define(tag,$$segment(@1,$$index(@1,=)+1))#
$define(version,Version $tag(
TED_VERSION DB =1.13), created on $tag(
TED_DATE DB =08/22/85) at $tag(
TED_TIME DB =12:25:15))#
$undefine(tag)#
$version
(C) COPYRIGHT 1985 by System Enhancement Associates; ALL RIGHTS RESERVED
By: Thom Henderson
Description:
This file contains the routines used to "run" a file
which is stored in an archive. At present, all we really do
is (a) extract a temporary file, (b) give its name as a system
command, and then (c) delete the file.
Language:
Computer Innovations Optimizing C86
*/
#include <stdio.h>
#include "arc.h"
runarc(num,arg) /* run file from archive */
int num; /* number of arguments */
char *arg[]; /* pointers to arguments */
{
struct heads hdr; /* file header */
int run; /* true to run current file */
int did[$maxarg]; /* true when argument was used */
int n; /* index */
char *makefnam(); /* filename fixer */
FILE *fopen(); /* file opener */
for(n=0; n<num; n++) /* for each argument */
did[n] = 0; /* reset usage flag */
openarc(0); /* open archive for reading */
if(num) /* if files were named */
{ while(readhdr(&hdr,arc)) /* while more files to check */
{ run = 0; /* reset run flag */
for(n=0; n<num; n++) /* for each template given */
{ if(match(hdr.name,arg[n]))
{ run = 1; /* turn on run flag */
did[n] = 1; /* turn on usage flag */
break; /* stop looking */
}
}
if(run) /* if running this one */
runfile(&hdr); /* then do it */
else /* else just skip it */
fseek(arc,hdr.size,1);
}
}
else while(readhdr(&hdr,arc)) /* else run all files */
runfile(&hdr);
closearc(0); /* close archive after changes */
if(note)
for(n=0; n<num; n++) /* report unused args */
if(!did[n])
printf("File not found: %s\n",arg[n]);
}
static runfile(hdr) /* run a file */
struct heads *hdr; /* pointer to header data */
{
FILE *tmp, *fopen(); /* temporary file */
char buf[$strlen], *makefnam(); /* temp file name, fixer */
char *dir, *gcdir(); /* directory stuff */
makefnam("X",hdr->name,buf); /* check out the name */
if(strcmp(buf,"X.BAT")
&& strcmp(buf,"X.COM")
&& strcmp(buf,"X.EXE"))
{ if(warn)
printf("File %s is not a .BAT, .COM, or .EXE\n",hdr->name);
fseek(arc,hdr->size,1); /* skip this file */
return;
}
makefnam("$ARCTEMP",hdr->name,buf);
if(warn)
if(tmp=fopen(buf,"wrb"))
abort("Temporary file %s already exists",buf);
if(!(tmp=fopen(makefnam("$ARCTEMP",hdr->name,buf),"wrb")))
abort("Unable to create temporary file %s",buf);
if(note)
printf("Invoking file: %s\n",hdr->name);
dir = gcdir(""); /* see where we are */
unpack(arc,tmp,hdr); /* unpack the entry */
fclose(tmp); /* release the file */
system("$ARCTEMP"); /* try to invoke it */
chdir(dir); free(dir); /* return to whence we started */
if(unlink(buf) && warn)
printf("Cannot unsave temporary file %s\n",buf);
}